GtkSearchBar: replace incomplete example with a real one
authorXavier Claessens <xavier.claessens@collabora.co.uk>
Wed, 9 Oct 2013 15:57:42 +0000 (11:57 -0400)
committerXavier Claessens <xavier.claessens@collabora.co.uk>
Thu, 10 Oct 2013 18:48:13 +0000 (14:48 -0400)
https://bugzilla.gnome.org/show_bug.cgi?id=709745

gtk/gtksearchbar.c

index bf5f2a969d48d9c208a49593031f786a786d6edc..417bc46ff86abd040714540d95aadf0c5d9ec764 100644 (file)
  *
  * <example>
  * <title>Creating a search bar</title>
- * <programlisting><![CDATA[
- * bar = gtk_search_bar_new ();
- *
- * /<!---->* Create a box for the search entry and related widgets *<---->/
- * entry = gtk_search_entry_new ();
- * box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
- * gtk_box_pack_start (GTK_BOX (box), entry, TRUE, TRUE, 0);
- * /<!---->* Add a menu button to select the category of the search *<---->/
- * menu_button = gtk_menu_button_new ();
- * gtk_box_pack_start (GTK_BOX (box), menu_button, FALSE, FALSE, 0);
- * gtk_container_add (GTK_CONTAINER (searchbar), box);
- *
- * /<!---->* And tell the search bar about the search entry *<---->/
- * gtk_search_bar_connect_entry (GTK_SEARCH_BAR (bar), entry);
- * ]]></programlisting>
+ * <programlisting>
+ * <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" href="../../../../examples/search-bar.c">
+ *  <xi:fallback>FIXME: MISSING XINCLUDE CONTENT</xi:fallback>
+ * </xi:include>
+ * </programlisting>
  * </example>
  *
  * Since: 3.10